home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / shareware / Flash_Oyunlar.exe / rocketbike.swf / scripts / DefineButton2_391 / BUTTONCONDACTION on(keyPress Space).as < prev    next >
Encoding:
Text File  |  2005-07-13  |  338 b   |  15 lines

  1. on(keyPress "<Space>"){
  2.    with(_root)
  3.    {
  4.       if(!paused and mode[human] == "ground")
  5.       {
  6.          playsound("frenazo");
  7.          mytrack[human] = bikes[human]._y;
  8.          yvel[human] = -6;
  9.          xvel[human] *= 0.3;
  10.          mode[human] = "falling";
  11.          bikes[human].chase.b._rotation += 12;
  12.       }
  13.    }
  14. }
  15.